home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-06 / ct_ntwre.zip / NS.DOC < prev    next >
Text File  |  1991-04-23  |  8KB  |  233 lines

  1. Computer Tyme NetSmart * Copyright 1990 by Marc Perkel
  2. All Rights Reserved * Version 1.0 * Release Date: 11-25-90
  3.  
  4. Computer Tyme * 411 North Sherman, Suite 300 * Springfield Mo. 65802
  5. (800) 548-5353 Sales * (417) 866-1222 Voice * (417) 866-1665 Data
  6.  
  7. Price: $95/Server or $995 unlimited.
  8.  
  9. This program helps make network dumb programs run better on a network.
  10. It does this by allowing you to use filenames that contain referrences
  11. to environment variables. These referrences are allowed in BATCH files
  12. but not DOS programs. NetSmart solves this problem.
  13.  
  14. NetSmart also intercepts file access calls and translates compatibility
  15. mode (or network dumb mode) to the more advanced sharing modes. The /L
  16. option allows for liberal translation which could be somewhat dangerous
  17. but is handy for very dumb programs.
  18.  
  19. By it's nature, this program isn't going to work with everything. If
  20. it works, it works. If it doesn't, then don't use it.
  21.  
  22. Usage: NS (/L) <Command Line>
  23. Example:
  24.    SET USERNAME=MARC
  25.    NS XCOPY F:\HOME\%USERNAME%\*.* A:
  26.  
  27. In this example, NS will translate the %USERNAME% into a file name
  28. that DOS can handle.
  29.  
  30. When installing network dumb software, you can use environment variable
  31. referrences for things like path names for configuration files. Thus, a
  32. program that normally only gives you one filename option need not be
  33. installed in every users directory.
  34.  
  35. NS is not exacltly a TSR. It unloads itself each time it is run so
  36. you have to use the NS command each time you use it. This way,
  37. NetSmart only takes up memory with programs that need to use it.
  38.  
  39. Other Computer Tyme Software:
  40. ======================================================
  41.  
  42. The Computer Tyme Dos ToolBox... Makes DOS easier for the novice,
  43. more powerful for the professional.
  44.  
  45. DIRECTORY MASTER is a powerful hard disk managment utility. It
  46. brings up your hard disk files and allows you to mark selected
  47. files so you can copy them, delete them, or move them. It also
  48. allows you to rename files, change dates, and change attributes.
  49. You can also run programs or set up your function keys to run
  50. programs on selected files.
  51.  
  52. DOLIST makes being at DOS easier. It gives you full line editing,
  53. like a word processor, for your commands. It also stores commands
  54. so that you can re-execute them. It remembers subdirectories and
  55. allows you to go back to them by pressing the TAB key. It offers
  56. programmable function keys, DOS extensions, multiple execution,
  57. and many more features you have got to have.
  58.  
  59. PICK DIRECTORY allows you to move through the directory system by
  60. displaying a graphic tree and letting you use your arrow keys to
  61. move around. It also lets you create, delete, rename, and hide
  62. directories.
  63.  
  64. TEDIT (from SemWare) is a powerful, easy to use full screen
  65. editor.
  66.  
  67. MARXTSR is a set of memory and TSR management utilities that let
  68. you load and unload TSRs (Terminate and stay resident programs)
  69. from memory. Utilities to list menory allocation and turn TSR's
  70. on and off.
  71.  
  72. And many more ... Also includes is D, a fancy directory listing
  73. program; WHEREIS, for finding stuff on you hard disk, SORT, MOVE,
  74. FIND, FREE, PIPEDIR, VERSION, and many more.
  75.  
  76. The Dos Toolbox sells for $59.95.
  77.  
  78. ======================================================
  79.  
  80. We are also selling QEdit from Semware. QEdit is a professional
  81. editor from Semware. TEdit is a mini version of QEdit. If you
  82. like TEdit, You'll love QEdit.
  83.  
  84. 1-800-548-5353 Order Line
  85. 1-417-866-1222 Voice Line
  86. 1-417-866-1665 BBS Data line * 1200/2400 * 8N1 * ANSI or VT100
  87.  
  88.  
  89. MARXMENU:
  90.  
  91. For the menu user who is interested in POWER!
  92.  
  93. MarxMenu version is a menu system that uses NO RAM. MarxMenu is
  94. compatible with all networks and contains a powerful menu language.
  95. This language gives you complete screen control as well as
  96. conditional menus. Math and string functions as well as
  97. multidimensional arrays are supported. MarxMenu can read environment
  98. variables, ports, ram locations, time, dates, the contents of text
  99. files, ect. and make decisions on them.
  100.  
  101. Screen control includes multi-layer exploding windows with
  102. unlimited number of selections and unlimited windows. 43/50 line
  103. ega and vga modes are supported. MarxMenu contains a screen
  104. blanker, password security on anything, keyboard lockout.
  105. MarxMenu can run programs while staying resident and read the dos
  106. errorlevel codes they return or marxmenu can return custom
  107. errorlevel codes to a calling program or batch file. MarxMenu can
  108. view text files in a window, read text files into an array and
  109. let you choose a line from that array in a window. MarxMenu can
  110. write string arrays to text files.
  111.  
  112. This menu system is targeted at the user whose primary interest
  113. is POWER! Here is a simple sample of what MarxMenu script looks
  114. like:
  115.  
  116. ==========================================
  117.  
  118. ;This menu is a sample of a simple menu.
  119. ;To run this menu type 'MARX SAMPLE'
  120.  
  121. TextColor Yellow Red
  122. ClearScreen
  123. BoxBorderColor Green Blue
  124. BoxInsideColor Yellow Blue
  125. DrawBox 25 7 32 13
  126. WriteCenter '* Sample Menu *'
  127. Writeln
  128. Writeln
  129. Writeln '   A - Directory'
  130. Writeln '   B - Wide Directory'
  131. Writeln '   C - Run ChkDsk'
  132. Writeln '   D - Type Menu to Screen'
  133. Writeln '   E - Edit This Menu'
  134. Writeln '   F - Drop to Dos'
  135. Writeln ' Esc - Exit'
  136. Writeln
  137. Write ' Select: '
  138.  
  139. OnKey 'A'
  140.    DIR
  141.    Pause   ;Lets you see the directory before screen clears
  142.  
  143. Onkey 'B'
  144.    DIR/W
  145.    Pause
  146.  
  147. OnKey 'C'
  148.    CHKDSK
  149.    Pause
  150.  
  151. OnKey 'D'
  152.    TYPE SAMPLE.MNU|MORE
  153.    Pause
  154.  
  155. OnKey 'E'
  156.    TEDIT SAMPLE.MNU
  157.  
  158. OnKey 'F'
  159.    @Echo To Return to the SAMPLE menu type EXIT
  160.    @Echo .
  161.    COMMAND
  162.  
  163.  
  164. MarxMenu comes with MarxEdit and MARXTSR manager and a few goodies out of
  165. the DOS ToolBox. The Network Survival Kit is a network version of almost
  166. every utility I've ever written. It's sold on a per fileserver basis.
  167.  
  168.               _______
  169.          ____|__     |               (tm)
  170.       --|       |    |-------------------
  171.         |   ____|__  |  Association of
  172.         |  |       |_|  Shareware
  173.         |__|   o   |    Professionals
  174.       -----|   |   |---------------------
  175.            |___|___|    APPROVED VENDOR
  176.  
  177.    ==========================================
  178.  
  179.  
  180.  
  181.  
  182.         Make Check            Computer Tyme            Order Form
  183.         Payable To:    411 North Sherman Suite 300
  184.                           Springfield Mo. 65802
  185.                      (417) 866-1222  (800) 548-5353
  186.  
  187.         Please send me Computer Tyme Software.
  188.  
  189.         =============================================================
  190.  
  191.         Name:        ________________________________________________
  192.  
  193.         Address:     ________________________________________________
  194.  
  195.         City/St/Zip: ________________________________________________
  196.  
  197.         Phone:       ________________________________________________
  198.  
  199.         Computer:    ________________________________________________
  200.  
  201.         Got From:    ________________________________________________
  202.  
  203.         Comments:    ________________________________________________
  204.  
  205.  
  206.         Single User Version:
  207.  
  208.         ___ Enclosed is $59.95 for MarxMenu.
  209.  
  210.         ___ Enclosed is $59.95 for the DOS ToolBox.
  211.  
  212.         ___ Enclosed is $99.95 for MarxMenu, the Dos ToolBox and DM3.
  213.  
  214.  
  215.         Network Version (1 per file server):
  216.  
  217.         ___ Enclosed is $495 for Network Survival Kit.
  218.  
  219.         ___ Add $3.00 for Shipping and Handling.
  220.  
  221.         ___ I need 3 1/2 Inch Media.
  222.  
  223.  
  224.         Credit Card Number: _______________ Expiration Date: ________
  225.  
  226.         Signature: __________________________________________________
  227.  
  228.         Master Card __   Visa __   Discover __
  229.  
  230.                     * We do not take American Express *
  231.  
  232.         =============================================================
  233.